home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_10_10 / 1010065a < prev    next >
Text File  |  1992-08-31  |  347b  |  18 lines

  1. int function_expecting_pointer_to_int( int *p_input_value);
  2.  
  3. void calling_function(void)
  4.     {
  5.     int i;
  6.     function_expecting_pointer_to_int(&i);
  7.     }
  8.  
  9. int function_expecting_pointer_to_int( int *p_xinput_value)
  10.     {
  11.     int local_variable;
  12.     /* Do something with it */
  13.     local_variable = *p_input_value;
  14.     ...
  15.     }
  16.  
  17.  
  18.